home *** CD-ROM | disk | FTP | other *** search
-
- BUILDING THE CAS TOOLKIT HIGH LEVEL FUNCTIONS LIBRARIES
- --------------------------------------------------------
-
- CONDITIONS NECESSARY FOR THE BATCH FILES AND MAKEFILE TO WORK:
-
- 1. They must be in the current directory with all the source files
- for the library being built.
-
- 2. The Toolkit libraries and include files must be in the directories
- named at the head of the makefile, except for whichever library is
- being built.
-
- 3. The DOS environment variables PATH, INCLUDE, and LIB must be set
- to include directories that contain the Microsoft C executables,
- include file, and libraries, respectively.
-
-
- EASIEST WAY: Use the batch file BLDLIB.BAT, in this directory.
-
- USAGE: bldlib <S|M|C|L> (WARNING: This IS case sensitive!)
- The SMALL, MEDIUM, COMPACT, or LARGE model CCP library will be built.
-
- TO BUILD ALL 4 LIBRARIES: SFAXLIB.LIB,
- MFAXLIB.LIB,
- CFAXLIB.LIB,
- LFAXLIB.LIB:
-
- Use the batch file BLDALL.BAT, in this directory. (No arguments.)
-
- HOW THE BATCH FILES BUILD THE DIFFERENT MODEL LIBRARIES:
-
- The batch file's argument is passed to the makefile through the MAKE command
- line as a makefile macro definition. The makefile builds model-specific
- .OBJ files from the generic .C sources, and updates the corresponding
- ?CCPLIB.LIB libraries from those .OBJ files.
-
- To completely rebuild a given model library, delete all the .OBJ files that
- begin with that model's first letter. For example, to rebuild the medium
- model library, enter the following commands:
-
- del m*.obj
- bldlib M